home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir37 / incx110d.zip / INC-DOCS.LZH / APPNOTES.LZH / MAKE.APP / MK.ACT < prev    next >
Text File  |  1991-01-06  |  1KB  |  37 lines

  1. Descrip;Makefile for software package
  2. Make;Make package
  3.     ;===== Update package history ===========================
  4.     !keyStuff "\ED\ED\ED\EN\TA%D\TA"
  5.     !edit history.txt
  6.     ;
  7.     ;===== Perform make for indicated target ================
  8.     !menu "What make target?"
  9.         !choice All     -- Make entire package
  10.             make -f %p.mk all >make.log
  11.             !resetMouse
  12.             !keyStuff "\@T"
  13.             !view make.log
  14.         !choice Lint    -- Run PC-Lint on entire package
  15.             make -f %p.mk lint >lint.log
  16.             !resetMouse
  17.             !view lint.log
  18.         !choice Test    -- Make and test package
  19.             make -f %p.mk test
  20.         !choice Install -- Make and install package
  21.             make -f %p.mk install >make.log
  22.             !resetMouse
  23.             !view make.log
  24.         !choice Archive -- Archive package
  25.             make -f %p.mk archive
  26.         !choice Print   -- Print package
  27.             make -f %p.mk print
  28.         !choice Debug   -- Debug package
  29.             make -f %p.mk debug
  30.         !choice Cleanup -- Delete all generatable artifacts
  31.             make -f %p.mk cleanup
  32.         !choice Other   -- Allows you to type in desired target
  33.             !query 1 "Enter desired target" 40
  34.             make -f %p.mk %1 > make.log
  35.             !view make.log
  36.     !endMenu
  37.